Object

EmailAttachment Class

Used to hold attachments to an email.

Properties

ContentEncoding

Data

MacCreator

MacType

MIMEType

Name

Methods

LoadFromFile

SaveToFile


Example

The following example takes a path to a file and adds it as an email attachment. The path has been entered into the EditField named fileFld.

Dim file as EmailAttachment
Dim mail as EmailMessage
If fileFld.text <> "" then
 file = New EmailAttachment
 file.loadFromFile GetFolderItem(fileFld.text)
 mail.Attachments. Append file
end if

See Also

EmailMessage, EmailHeaders, POP3Socket, POP3SecureSocket, SMTPSocket, SMTPSecureSocket, SocketCore, TCPSocket classes.